Menu

Chat Related

Zathrus Writer

Commands that extend the use of in-game chat.


Configuration

Each of the commands may have a specific configuration options included with it. Please check commands descriptions for more details.


/cex_mute

  • Description: Mutes a player indefinitelly or for a given time period.
  • Usage: /cex_mute <player> [time]</player>
  • Permission node: cex.mute
  • Default permission: OP only
  • Aliases: mute
  • Location in JAR file: com/github/zathrus_writer/commandsex/commands/Command_cex_mute.class

/cex_unmute

  • Description: Unmutes a player.
  • Usage: /cex_unmute \<Player>
  • Permission node: cex.unmute
  • Default permission: OP only
  • Aliases: unmute
  • Location in JAR file: com/github/zathrus_writer/commandsex/commands/Command_cex_unmute.class

/cex_broadcast

  • Description: Broadcasts a message from player to everyone on the server in the /say way.
  • Usage: /cex_broadcast \<Message>
  • Permission node: cex.broadcast
  • Default permission: OP only
  • Aliases: broadcast, bcast
  • Location in JAR file: com/github/zathrus_writer/commandsex/commands/Command_cex_broadcast.class

/cex_quiz

  • Description: Displays various information about quizzes and also allows for rewards claiming and forcing a quiz start.
  • Usage: /cex_quiz
  • Permission nodes:
    • cex.quiz.version -> Allows player to see version of the quizzes module. Default: Everyone
    • cex.quiz.start -> Allows player to force start a new quiz on the server. Default: OP only
    • cex.quiz.status -> Allows player to see when the next quiz is scheduled to begin. Default: Everyone
    • cex.quiz.claim -> Allows player to claim their reward after winnig the quiz. Default: Everyone
  • Aliases: quiz
  • Location in JAR file: com/github/zathrus_writer/commandsex/commands/Command_cex_quiz.class

Configuration:

# time (in seconds) after which to start a periodic quiz, set to 0 to disable timer
# ... if 0, admins can still force a new quiz by issuing command /quiz start
quizRepeatTime: 500

# time (in seconds) between the quiz is announced and it actually starts (to leave players time to prepare)
quizDelay: 10

# time (in seconds) how long will one quiz question remain valid
quizDuration: 60

# quiz difficulties and rewards - each difficulty has its own rewards set which is cycled through
# one reward will not be repeated twice in a row
quizDiff:
  easy:
    caseSentisive : 0 # if true or 1, answers will be checked case-sensitively
    reward1:
      2      : 4 # 4x grass block
    reward2:
      298    : 1 # 1x leather helmet
      "35:5" : 8 # 8x lime wool block

# set up your quizzes here (quiz names can be arbitrary)
quizzes:
  babyBorn:
    question: How long does it take for a baby to be born?
    difficulty: easy # this must be a value defined in quizDiff section above
      answers:

      - 9 months
      - 9 mnts
      - nine months
      - nine mnts

/cex_motd

  • Description: Displays Message Of The Day to the player.
  • Usage: /cex_motd
  • Permission node: cex.motd
  • Default permission: everyone
  • Aliases: motd
  • Location in JAR file: com/github/zathrus_writer/commandsex/commands/Command_cex_motd.class

MongoDB Logo MongoDB